home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 September & October / Amiga-CD 1996 #9-10.iso / ausgabe_9_96 / kommunikation / mm_030 / rexx / mm_writelog.rexx < prev   
OS/2 REXX Batch file  |  1996-04-29  |  185b  |  16 lines

  1. /*
  2. ** This script shows how to use the
  3. ** MM_WriteLog command.
  4. */
  5.  
  6. address 'MAILMANAGER'
  7.  
  8. num = 10
  9. string = "I have Imported "num" messages"
  10.  
  11. say string
  12.  
  13. MM_WriteLog 'string' 3
  14.  
  15. say RC
  16.